Model/NodesStorageContent.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 Protected No description available. .PARAMETER Size No description available. .PARAMETER Used No description available. .PARAMETER Notes No description available. .PARAMETER Path No description available. .PARAMETER Format No description available. .OUTPUTS NodesStorageContent<PSCustomObject> #> function Initialize-PVENodesStorageContent { [CmdletBinding()] Param ( [Parameter(ValueFromPipelineByPropertyName = $true)] [System.Nullable[Boolean]] ${Protected}, [Parameter(ValueFromPipelineByPropertyName = $true)] [System.Nullable[Int32]] ${Size}, [Parameter(ValueFromPipelineByPropertyName = $true)] [System.Nullable[Int32]] ${Used}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${Notes}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${Path}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${Format} ) Process { 'Creating PSCustomObject: ProxmoxPVE => PVENodesStorageContent' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $DisplayNameMapping =@{ "Protected"="protected"; "Size"="size"; "Used"="used"; "Notes"="notes"; "Path"="path"; "Format"="format" } $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 NodesStorageContent<PSCustomObject> .DESCRIPTION Convert from JSON to NodesStorageContent<PSCustomObject> .PARAMETER Json Json object .OUTPUTS NodesStorageContent<PSCustomObject> #> function ConvertFrom-PVEJsonToNodesStorageContent { Param( [AllowEmptyString()] [string]$Json ) Process { 'Converting JSON to PSCustomObject: ProxmoxPVE => PVENodesStorageContent' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $JsonParameters = ConvertFrom-Json -InputObject $Json # check if Json contains properties not defined in PVENodesStorageContent $AllProperties = ("protected", "size", "used", "notes", "path", "format") 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 "protected"))) { #optional property not found $Protected = $null } else { $Protected = $JsonParameters.PSobject.Properties["protected"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "size"))) { #optional property not found $Size = $null } else { $Size = $JsonParameters.PSobject.Properties["size"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "used"))) { #optional property not found $Used = $null } else { $Used = $JsonParameters.PSobject.Properties["used"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "notes"))) { #optional property not found $Notes = $null } else { $Notes = $JsonParameters.PSobject.Properties["notes"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "path"))) { #optional property not found $Path = $null } else { $Path = $JsonParameters.PSobject.Properties["path"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "format"))) { #optional property not found $Format = $null } else { $Format = $JsonParameters.PSobject.Properties["format"].value } $PSO = [PSCustomObject]@{ "protected" = ${Protected} "size" = ${Size} "used" = ${Used} "notes" = ${Notes} "path" = ${Path} "format" = ${Format} } return $PSO } } |