Model/ProvisionInfo.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 Token No description available. .PARAMETER AutoProvUrl No description available. .PARAMETER GatewayUrl No description available. .PARAMETER ProvisionedDevices No description available. .PARAMETER StandardDeviceLimit No description available. .OUTPUTS ProvisionInfo<PSCustomObject> #> function Initialize-TorizonPlatformAPIProvisionInfo { [CmdletBinding()] Param ( [Parameter(Position = 0, ValueFromPipelineByPropertyName = $true)] [String] ${Token}, [Parameter(Position = 1, ValueFromPipelineByPropertyName = $true)] [String] ${AutoProvUrl}, [Parameter(Position = 2, ValueFromPipelineByPropertyName = $true)] [String] ${GatewayUrl}, [Parameter(Position = 3, ValueFromPipelineByPropertyName = $true)] [Int32] ${ProvisionedDevices}, [Parameter(Position = 4, ValueFromPipelineByPropertyName = $true)] [Int32] ${StandardDeviceLimit} ) Process { 'Creating PSCustomObject: TorizonPlatformAPI => TorizonPlatformAPIProvisionInfo' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug if ($null -eq $Token) { throw "invalid value for 'Token', 'Token' cannot be null." } if ($null -eq $AutoProvUrl) { throw "invalid value for 'AutoProvUrl', 'AutoProvUrl' cannot be null." } if ($null -eq $GatewayUrl) { throw "invalid value for 'GatewayUrl', 'GatewayUrl' cannot be null." } if ($null -eq $ProvisionedDevices) { throw "invalid value for 'ProvisionedDevices', 'ProvisionedDevices' cannot be null." } if ($null -eq $StandardDeviceLimit) { throw "invalid value for 'StandardDeviceLimit', 'StandardDeviceLimit' cannot be null." } $PSO = [PSCustomObject]@{ "token" = ${Token} "autoProvUrl" = ${AutoProvUrl} "gatewayUrl" = ${GatewayUrl} "provisionedDevices" = ${ProvisionedDevices} "standardDeviceLimit" = ${StandardDeviceLimit} } return $PSO } } <# .SYNOPSIS Convert from JSON to ProvisionInfo<PSCustomObject> .DESCRIPTION Convert from JSON to ProvisionInfo<PSCustomObject> .PARAMETER Json Json object .OUTPUTS ProvisionInfo<PSCustomObject> #> function ConvertFrom-TorizonPlatformAPIJsonToProvisionInfo { Param( [AllowEmptyString()] [string]$Json ) Process { 'Converting JSON to PSCustomObject: TorizonPlatformAPI => TorizonPlatformAPIProvisionInfo' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $JsonParameters = ConvertFrom-Json -InputObject $Json # check if Json contains properties not defined in TorizonPlatformAPIProvisionInfo $AllProperties = ("token", "autoProvUrl", "gatewayUrl", "provisionedDevices", "standardDeviceLimit") 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 'token' missing." } if (!([bool]($JsonParameters.PSobject.Properties.name -match "token"))) { throw "Error! JSON cannot be serialized due to the required property 'token' missing." } else { $Token = $JsonParameters.PSobject.Properties["token"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "autoProvUrl"))) { throw "Error! JSON cannot be serialized due to the required property 'autoProvUrl' missing." } else { $AutoProvUrl = $JsonParameters.PSobject.Properties["autoProvUrl"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "gatewayUrl"))) { throw "Error! JSON cannot be serialized due to the required property 'gatewayUrl' missing." } else { $GatewayUrl = $JsonParameters.PSobject.Properties["gatewayUrl"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "provisionedDevices"))) { throw "Error! JSON cannot be serialized due to the required property 'provisionedDevices' missing." } else { $ProvisionedDevices = $JsonParameters.PSobject.Properties["provisionedDevices"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "standardDeviceLimit"))) { throw "Error! JSON cannot be serialized due to the required property 'standardDeviceLimit' missing." } else { $StandardDeviceLimit = $JsonParameters.PSobject.Properties["standardDeviceLimit"].value } $PSO = [PSCustomObject]@{ "token" = ${Token} "autoProvUrl" = ${AutoProvUrl} "gatewayUrl" = ${GatewayUrl} "provisionedDevices" = ${ProvisionedDevices} "standardDeviceLimit" = ${StandardDeviceLimit} } return $PSO } } |