Model/POSTNodesQemuAgentRB.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 Command No description available. .OUTPUTS POSTNodesQemuAgentRB<PSCustomObject> #> function Initialize-PVEPOSTNodesQemuAgentRB { [CmdletBinding()] Param ( [Parameter(ValueFromPipelineByPropertyName = $true)] [ValidateSet("fsfreeze-freeze", "fsfreeze-status", "fsfreeze-thaw", "fstrim", "get-fsinfo", "get-host-name", "get-memory-block-info", "get-memory-blocks", "get-osinfo", "get-time", "get-timezone", "get-users", "get-vcpus", "info", "network-get-interfaces", "ping", "shutdown", "suspend-disk", "suspend-hybrid", "suspend-ram")] [String] ${Command} ) Process { 'Creating PSCustomObject: ProxmoxPVE => PVEPOSTNodesQemuAgentRB' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $DisplayNameMapping =@{ "Command"="command" } $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 POSTNodesQemuAgentRB<PSCustomObject> .DESCRIPTION Convert from JSON to POSTNodesQemuAgentRB<PSCustomObject> .PARAMETER Json Json object .OUTPUTS POSTNodesQemuAgentRB<PSCustomObject> #> function ConvertFrom-PVEJsonToPOSTNodesQemuAgentRB { Param( [AllowEmptyString()] [string]$Json ) Process { 'Converting JSON to PSCustomObject: ProxmoxPVE => PVEPOSTNodesQemuAgentRB' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $JsonParameters = ConvertFrom-Json -InputObject $Json # check if Json contains properties not defined in PVEPOSTNodesQemuAgentRB $AllProperties = ("command") 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 "command"))) { #optional property not found $Command = $null } else { $Command = $JsonParameters.PSobject.Properties["command"].value } $PSO = [PSCustomObject]@{ "command" = ${Command} } return $PSO } } |