Model/SSHHostKey.ps1
# # SMServer V6 # Syncplify.me Server! REST API # Version: 1.0.0 # Generated by OpenAPI Generator: https://openapi-generator.tech # <# .SYNOPSIS No summary available. .DESCRIPTION No description available. .PARAMETER Id No description available. .PARAMETER Name No description available. .PARAMETER Key No description available. .PARAMETER Type No description available. .PARAMETER Fingerprint No description available. .OUTPUTS SSHHostKey<PSCustomObject> #> function New-SS6SSHHostKey { [CmdletBinding()] Param ( [Parameter(Position = 0, ValueFromPipelineByPropertyName = $true)] [String] ${Id}, [Parameter(Position = 1, ValueFromPipelineByPropertyName = $true)] [String] ${Name}, [Parameter(Position = 2, ValueFromPipelineByPropertyName = $true)] [String] ${Key}, [Parameter(Position = 3, ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${Type}, [Parameter(Position = 4, ValueFromPipelineByPropertyName = $true)] [String] ${Fingerprint} ) Process { 'Creating object: SS6AdminModule => SS6SSHHostKey' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $PSO = [PSCustomObject]@{ "id" = ${Id} "name" = ${Name} "key" = ${Key} "type" = ${Type} "fingerprint" = ${Fingerprint} } return $PSO } } |