Model/DevicePackages.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 DeviceId No description available. .PARAMETER InstalledPackages No description available. .OUTPUTS DevicePackages<PSCustomObject> #> function Initialize-TorizonPlatformAPIDevicePackages { [CmdletBinding()] Param ( [Parameter(Position = 0, ValueFromPipelineByPropertyName = $true)] [String] ${DeviceId}, [Parameter(Position = 1, ValueFromPipelineByPropertyName = $true)] [PSCustomObject[]] ${InstalledPackages} ) Process { 'Creating PSCustomObject: TorizonPlatformAPI => TorizonPlatformAPIDevicePackages' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug if ($null -eq $DeviceId) { throw "invalid value for 'DeviceId', 'DeviceId' cannot be null." } $PSO = [PSCustomObject]@{ "deviceId" = ${DeviceId} "installedPackages" = ${InstalledPackages} } return $PSO } } <# .SYNOPSIS Convert from JSON to DevicePackages<PSCustomObject> .DESCRIPTION Convert from JSON to DevicePackages<PSCustomObject> .PARAMETER Json Json object .OUTPUTS DevicePackages<PSCustomObject> #> function ConvertFrom-TorizonPlatformAPIJsonToDevicePackages { Param( [AllowEmptyString()] [string]$Json ) Process { 'Converting JSON to PSCustomObject: TorizonPlatformAPI => TorizonPlatformAPIDevicePackages' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $JsonParameters = ConvertFrom-Json -InputObject $Json # check if Json contains properties not defined in TorizonPlatformAPIDevicePackages $AllProperties = ("deviceId", "installedPackages") 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 'deviceId' missing." } if (!([bool]($JsonParameters.PSobject.Properties.name -match "deviceId"))) { throw "Error! JSON cannot be serialized due to the required property 'deviceId' missing." } else { $DeviceId = $JsonParameters.PSobject.Properties["deviceId"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "installedPackages"))) { #optional property not found $InstalledPackages = $null } else { $InstalledPackages = $JsonParameters.PSobject.Properties["installedPackages"].value } $PSO = [PSCustomObject]@{ "deviceId" = ${DeviceId} "installedPackages" = ${InstalledPackages} } return $PSO } } |