Model/ClusterMappingPciInner.ps1
# # Proxmox VE # Generated module to access all Proxmox VE Api Endpoints # Version: 0.3 # Contact: amna.wolf@gmail.com # Generated by OpenAPI Generator: https://openapi-generator.tech # <# .SYNOPSIS No summary available. .DESCRIPTION No description available. .PARAMETER Checks No description available. .PARAMETER Id No description available. .PARAMETER Map No description available. .PARAMETER Description No description available. .OUTPUTS ClusterMappingPciInner<PSCustomObject> #> function Initialize-PVEClusterMappingPciInner { [CmdletBinding()] Param ( [Parameter(ValueFromPipelineByPropertyName = $true)] [PSCustomObject[]] ${Checks}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${Id}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String[]] ${Map}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${Description} ) Process { 'Creating PSCustomObject: ProxmoxPVE => PVEClusterMappingPciInner' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $DisplayNameMapping =@{ "Checks"="checks"; "Id"="id"; "Map"="map"; "Description"="description" } $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 ClusterMappingPciInner<PSCustomObject> .DESCRIPTION Convert from JSON to ClusterMappingPciInner<PSCustomObject> .PARAMETER Json Json object .OUTPUTS ClusterMappingPciInner<PSCustomObject> #> function ConvertFrom-PVEJsonToClusterMappingPciInner { Param( [AllowEmptyString()] [string]$Json ) Process { 'Converting JSON to PSCustomObject: ProxmoxPVE => PVEClusterMappingPciInner' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $JsonParameters = ConvertFrom-Json -InputObject $Json # check if Json contains properties not defined in PVEClusterMappingPciInner $AllProperties = ("checks", "id", "map", "description") 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 "checks"))) { #optional property not found $Checks = $null } else { $Checks = $JsonParameters.PSobject.Properties["checks"].value } 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 "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 } $PSO = [PSCustomObject]@{ "checks" = ${Checks} "id" = ${Id} "map" = ${Map} "description" = ${Description} } return $PSO } } |