Model/PUTClusterMappingUsbRB.ps1
# # Proxmox PowerShell VE # Generated module to access all Proxmox VE Api Endpoints. This module has been generated from the proxmox api description v. 8.4.0 # Version: 8.4.0 # Contact: mail@timo-wolf.de # Generated by OpenAPI Generator: https://openapi-generator.tech # <# .SYNOPSIS No summary available. .DESCRIPTION No description available. .PARAMETER Delete No description available. .PARAMETER Map No description available. .PARAMETER Description No description available. .PARAMETER Digest No description available. .OUTPUTS PUTClusterMappingUsbRB<PSCustomObject> #> function Initialize-PVEPUTClusterMappingUsbRB { [CmdletBinding()] Param ( [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${Delete}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String[]] ${Map}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${Description}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${Digest} ) Process { 'Creating PSCustomObject: ProxmoxPVE => PVEPUTClusterMappingUsbRB' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug if (!$Delete -and $Delete.length -gt 4096) { throw "invalid value for 'Delete', the character length must be smaller than or equal to 4096." } if (!$Description -and $Description.length -gt 4096) { throw "invalid value for 'Description', the character length must be smaller than or equal to 4096." } if (!$Digest -and $Digest.length -gt 64) { throw "invalid value for 'Digest', the character length must be smaller than or equal to 64." } $DisplayNameMapping =@{ "Delete"="delete"; "Map"="map"; "Description"="description"; "Digest"="digest" } $OBJ = @{} foreach($parameter in $PSBoundParameters.Keys){ #If Specifield map the Display name back $OBJ.($DisplayNameMapping.($parameter)) = $PSBoundParameters.$parameter } $PSO = [PSCustomObject]$OBJ return $PSO } } <# .SYNOPSIS Convert from JSON to PUTClusterMappingUsbRB<PSCustomObject> .DESCRIPTION Convert from JSON to PUTClusterMappingUsbRB<PSCustomObject> .PARAMETER Json Json object .OUTPUTS PUTClusterMappingUsbRB<PSCustomObject> #> function ConvertFrom-PVEJsonToPUTClusterMappingUsbRB { Param( [AllowEmptyString()] [string]$Json ) Process { 'Converting JSON to PSCustomObject: ProxmoxPVE => PVEPUTClusterMappingUsbRB' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $JsonParameters = ConvertFrom-Json -InputObject $Json # check if Json contains properties not defined in PVEPUTClusterMappingUsbRB $AllProperties = ("delete", "map", "description", "digest") 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 "delete"))) { #optional property not found $Delete = $null } else { $Delete = $JsonParameters.PSobject.Properties["delete"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "map"))) { #optional property not found $Map = $null } else { $Map = $JsonParameters.PSobject.Properties["map"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "description"))) { #optional property not found $Description = $null } else { $Description = $JsonParameters.PSobject.Properties["description"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "digest"))) { #optional property not found $Digest = $null } else { $Digest = $JsonParameters.PSobject.Properties["digest"].value } $PSO = [PSCustomObject]@{ "delete" = ${Delete} "map" = ${Map} "description" = ${Description} "digest" = ${Digest} } return $PSO } } |