Model/SSHPubKey.ps1
# # SMServer V6 # Syncplify Server! REST API # Version: 1.0.0 # Generated by OpenAPI Generator: https://openapi-generator.tech # <# .SYNOPSIS No summary available. .DESCRIPTION SSH2 public key, the 'key' field is required .PARAMETER Id No description available. .PARAMETER Name a free-text name for the public key .PARAMETER Key the key itself .PARAMETER Fingerprint No description available. .PARAMETER Type No description available. .PARAMETER Comment No description available. .OUTPUTS SSHPubKey<PSCustomObject> #> function Initialize-SS6SSHPubKey { [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)] [String] ${Fingerprint}, [Parameter(Position = 4, ValueFromPipelineByPropertyName = $true)] [String] ${Type}, [Parameter(Position = 5, ValueFromPipelineByPropertyName = $true)] [String] ${Comment} ) Process { 'Creating PSCustomObject: SS6AdminModule => SS6SSHPubKey' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $PSO = [PSCustomObject]@{ "id" = ${Id} "name" = ${Name} "key" = ${Key} "fingerprint" = ${Fingerprint} "type" = ${Type} "comment" = ${Comment} } return $PSO } } <# .SYNOPSIS Convert from JSON to SSHPubKey<PSCustomObject> .DESCRIPTION Convert from JSON to SSHPubKey<PSCustomObject> .PARAMETER Json Json object .OUTPUTS SSHPubKey<PSCustomObject> #> function ConvertFrom-SS6JsonToSSHPubKey { Param( [AllowEmptyString()] [string]$Json ) Process { 'Converting JSON to PSCustomObject: SS6AdminModule => SS6SSHPubKey' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $JsonParameters = ConvertFrom-Json -InputObject $Json # check if Json contains properties not defined in SS6SSHPubKey $AllProperties = ("id", "name", "key", "fingerprint", "type", "comment") foreach ($name in $JsonParameters.PsObject.Properties.Name) { if (!($AllProperties.Contains($name))) { throw "Error! JSON key '$name' not found in the properties: $($AllProperties)" } } if (!([bool]($JsonParameters.PSobject.Properties.name -match "id"))) { #optional property not found $Id = $null } else { $Id = $JsonParameters.PSobject.Properties["id"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "name"))) { #optional property not found $Name = $null } else { $Name = $JsonParameters.PSobject.Properties["name"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "key"))) { #optional property not found $Key = $null } else { $Key = $JsonParameters.PSobject.Properties["key"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "fingerprint"))) { #optional property not found $Fingerprint = $null } else { $Fingerprint = $JsonParameters.PSobject.Properties["fingerprint"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "type"))) { #optional property not found $Type = $null } else { $Type = $JsonParameters.PSobject.Properties["type"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "comment"))) { #optional property not found $Comment = $null } else { $Comment = $JsonParameters.PSobject.Properties["comment"].value } $PSO = [PSCustomObject]@{ "id" = ${Id} "name" = ${Name} "key" = ${Key} "fingerprint" = ${Fingerprint} "type" = ${Type} "comment" = ${Comment} } return $PSO } } |