update pwsh style

This commit is contained in:
OCram85 2022-06-28 08:24:33 +02:00
parent 3aa126d64c
commit cdd58bc167
10 changed files with 22 additions and 23 deletions

View File

@ -21,7 +21,7 @@ function Test-CSCertificate {
[CmdletBinding()]
[OutputType([bool])]
param(
param (
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[ValidateSet('Private', 'Shared')]

View File

@ -21,14 +21,6 @@ function Test-CSConnection {
.EXAMPLE
Test-CMConnection -RemoteHost "vcr01.internal.net" -Type VMware
.NOTES
- File Name : Test-CSConnection.ps1
- Author : Marco Blessing - marco.blessing@googlemail.com
- Requires :
.LINK
https://github.com/OCram85/PSCredentialStore
#>
[CmdletBinding()]
@ -38,7 +30,7 @@ function Test-CSConnection {
[ValidateNotNullOrEmpty()]
[string]$RemoteHost,
[Parameter(Mandatory = $True)]
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[ValidateSet("CiscoUcs", "FTP", "NetAppFAS", "VMware")]
[string]$Type

View File

@ -29,13 +29,14 @@ function Test-CredentialStoreItem {
[None]
.EXAMPLE
If (Test-CredentialStoreItem -RemoteHost "Default") {
if (Test-CredentialStoreItem -RemoteHost "Default") {
Get-CredentialStoreItem -RemoteHost "Default"
}
Else {
else {
Write-Warning ("The given Remote Host {0} does not exist in the credential Store!" -f $RemoteHost)
}
#>
[CmdletBinding(DefaultParameterSetName = 'Private')]
[OutputType([bool])]
param (

View File

@ -8,7 +8,8 @@ function Get-ModuleBase {
.OUTPUTS
Returns the base path as string
#>
#>
[CmdletBinding()]
[OutputType([string])]
param ()

View File

@ -14,12 +14,13 @@ function Get-TempDir {
.EXAMPLE
Get-TempDir
#>
[CmdletBinding()]
[OutputType([string])]
param ()
begin {}
process {
if ($IsLinux) {
return (Resolve-Path -Path '/tmp/').Path
@ -27,10 +28,14 @@ function Get-TempDir {
if ($IsMacOS) {
return (Resolve-Path -Path '/tmp/').Path
}
elseif (($isWindows) -or ($PSVersionTable.PSVersion.Major -lt 6) -or ($PSVersionTable.PSEdition -eq 'Desktop')) {
elseif (
($isWindows) -or
($PSVersionTable.PSVersion.Major -lt 6) -or
($PSVersionTable.PSEdition -eq 'Desktop')
) {
return (Resolve-Path -Path $env:TEMP).Path
}
}
end {
}
end {}
}

View File

@ -70,7 +70,7 @@ function Import-CSPfxCertificate {
$_.Exception.Message | Write-Error -ErrorAction Stop
}
}
process {
try {
$cert = [System.Security.Cryptography.X509Certificates.X509Certificate2]::new(

View File

@ -27,7 +27,7 @@ function Test-CSPfxCertificate {
[CmdletBinding()]
[OutputType([bool])]
param(
param (
[Parameter(Mandatory = $true, ValueFromPipeline = $true)]
[ValidateNotNullOrEmpty()]
[string]$Thumbprint,

View File

@ -33,9 +33,10 @@ function Test-Module {
.EXAMPLE
.\Test-Dependency -Name 'VMware.PowerCLI' -Type 'Module' -StopIfFails
#>
[OutputType([bool])]
[CmdletBinding()]
param(
param (
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[string]$Name,

View File

@ -242,6 +242,5 @@ function New-CredentialStore {
}
}
end {
}
end {}
}

View File

@ -16,8 +16,8 @@ function Test-CredentialStore {
.EXAMPLE
Test-CredentialStore -eq $true
#>
[CmdletBinding(DefaultParameterSetName = 'Private')]
[OutputType([bool])]
param (