Model/PackageInfo.ps1
# # Torizon OTA # No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # Version: 2.0-Beta # Generated by OpenAPI Generator: https://openapi-generator.tech # <# .SYNOPSIS No summary available. .DESCRIPTION No description available. .PARAMETER PackageName No description available. .PARAMETER PackageVersion No description available. .OUTPUTS PackageInfo<PSCustomObject> #> function Initialize-TorizonPlatformAPIPackageInfo { [CmdletBinding()] Param ( [Parameter(Position = 0, ValueFromPipelineByPropertyName = $true)] [String] ${PackageName}, [Parameter(Position = 1, ValueFromPipelineByPropertyName = $true)] [String] ${PackageVersion} ) Process { 'Creating PSCustomObject: TorizonPlatformAPI => TorizonPlatformAPIPackageInfo' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug if ($null -eq $PackageName) { throw "invalid value for 'PackageName', 'PackageName' cannot be null." } if ($null -eq $PackageVersion) { throw "invalid value for 'PackageVersion', 'PackageVersion' cannot be null." } $PSO = [PSCustomObject]@{ "packageName" = ${PackageName} "packageVersion" = ${PackageVersion} } return $PSO } } <# .SYNOPSIS Convert from JSON to PackageInfo<PSCustomObject> .DESCRIPTION Convert from JSON to PackageInfo<PSCustomObject> .PARAMETER Json Json object .OUTPUTS PackageInfo<PSCustomObject> #> function ConvertFrom-TorizonPlatformAPIJsonToPackageInfo { Param( [AllowEmptyString()] [string]$Json ) Process { 'Converting JSON to PSCustomObject: TorizonPlatformAPI => TorizonPlatformAPIPackageInfo' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $JsonParameters = ConvertFrom-Json -InputObject $Json # check if Json contains properties not defined in TorizonPlatformAPIPackageInfo $AllProperties = ("packageName", "packageVersion") foreach ($name in $JsonParameters.PsObject.Properties.Name) { if (!($AllProperties.Contains($name))) { throw "Error! JSON key '$name' not found in the properties: $($AllProperties)" } } If ([string]::IsNullOrEmpty($Json) -or $Json -eq "{}") { # empty json throw "Error! Empty JSON cannot be serialized due to the required property 'packageName' missing." } if (!([bool]($JsonParameters.PSobject.Properties.name -match "packageName"))) { throw "Error! JSON cannot be serialized due to the required property 'packageName' missing." } else { $PackageName = $JsonParameters.PSobject.Properties["packageName"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "packageVersion"))) { throw "Error! JSON cannot be serialized due to the required property 'packageVersion' missing." } else { $PackageVersion = $JsonParameters.PSobject.Properties["packageVersion"].value } $PSO = [PSCustomObject]@{ "packageName" = ${PackageName} "packageVersion" = ${PackageVersion} } return $PSO } } |