Model/PUTNodesQemuFirewallOptionsRB.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 PolicyIn No description available. .PARAMETER Digest No description available. .PARAMETER Radv No description available. .PARAMETER Ndp No description available. .PARAMETER PolicyOut No description available. .PARAMETER Enable No description available. .PARAMETER Dhcp No description available. .PARAMETER LogLevelIn No description available. .PARAMETER LogLevelOut No description available. .PARAMETER Macfilter No description available. .PARAMETER Node No description available. .PARAMETER Vmid No description available. .PARAMETER Ipfilter No description available. .PARAMETER Delete No description available. .OUTPUTS PUTNodesQemuFirewallOptionsRB<PSCustomObject> #> function Initialize-PVEPUTNodesQemuFirewallOptionsRB { [CmdletBinding()] Param ( [Parameter(ValueFromPipelineByPropertyName = $true)] [ValidateSet("ACCEPT", "REJECT", "DROP")] [String] ${PolicyIn}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${Digest}, [Parameter(ValueFromPipelineByPropertyName = $true)] [System.Nullable[Int32]] ${Radv}, [Parameter(ValueFromPipelineByPropertyName = $true)] [System.Nullable[Int32]] ${Ndp}, [Parameter(ValueFromPipelineByPropertyName = $true)] [ValidateSet("ACCEPT", "REJECT", "DROP")] [String] ${PolicyOut}, [Parameter(ValueFromPipelineByPropertyName = $true)] [System.Nullable[Int32]] ${Enable}, [Parameter(ValueFromPipelineByPropertyName = $true)] [System.Nullable[Int32]] ${Dhcp}, [Parameter(ValueFromPipelineByPropertyName = $true)] [ValidateSet("emerg", "alert", "crit", "err", "warning", "notice", "info", "debug", "nolog")] [String] ${LogLevelIn}, [Parameter(ValueFromPipelineByPropertyName = $true)] [ValidateSet("emerg", "alert", "crit", "err", "warning", "notice", "info", "debug", "nolog")] [String] ${LogLevelOut}, [Parameter(ValueFromPipelineByPropertyName = $true)] [System.Nullable[Int32]] ${Macfilter}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${Node}, [Parameter(ValueFromPipelineByPropertyName = $true)] [System.Nullable[Int32]] ${Vmid}, [Parameter(ValueFromPipelineByPropertyName = $true)] [System.Nullable[Int32]] ${Ipfilter}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${Delete} ) Process { 'Creating PSCustomObject: ProxmoxPVE => PVEPUTNodesQemuFirewallOptionsRB' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug if (!$Digest -and $Digest.length -gt 64) { throw "invalid value for 'Digest', the character length must be smaller than or equal to 64." } if ($Radv -and $Radv -gt 1) { throw "invalid value for 'Radv', must be smaller than or equal to 1." } if ($Radv -and $Radv -lt 0) { throw "invalid value for 'Radv', must be greater than or equal to 0." } if ($Ndp -and $Ndp -gt 1) { throw "invalid value for 'Ndp', must be smaller than or equal to 1." } if ($Ndp -and $Ndp -lt 0) { throw "invalid value for 'Ndp', must be greater than or equal to 0." } if ($Enable -and $Enable -gt 1) { throw "invalid value for 'Enable', must be smaller than or equal to 1." } if ($Enable -and $Enable -lt 0) { throw "invalid value for 'Enable', must be greater than or equal to 0." } if ($Dhcp -and $Dhcp -gt 1) { throw "invalid value for 'Dhcp', must be smaller than or equal to 1." } if ($Dhcp -and $Dhcp -lt 0) { throw "invalid value for 'Dhcp', must be greater than or equal to 0." } if ($Macfilter -and $Macfilter -gt 1) { throw "invalid value for 'Macfilter', must be smaller than or equal to 1." } if ($Macfilter -and $Macfilter -lt 0) { throw "invalid value for 'Macfilter', must be greater than or equal to 0." } if ($Vmid -and $Vmid -gt 999999999) { throw "invalid value for 'Vmid', must be smaller than or equal to 999999999." } if ($Vmid -and $Vmid -lt 100) { throw "invalid value for 'Vmid', must be greater than or equal to 100." } if ($Ipfilter -and $Ipfilter -gt 1) { throw "invalid value for 'Ipfilter', must be smaller than or equal to 1." } if ($Ipfilter -and $Ipfilter -lt 0) { throw "invalid value for 'Ipfilter', must be greater than or equal to 0." } $DisplayNameMapping =@{ "PolicyIn"="policy_in"; "Digest"="digest"; "Radv"="radv"; "Ndp"="ndp"; "PolicyOut"="policy_out"; "Enable"="enable"; "Dhcp"="dhcp"; "LogLevelIn"="log_level_in"; "LogLevelOut"="log_level_out"; "Macfilter"="macfilter"; "Node"="node"; "Vmid"="vmid"; "Ipfilter"="ipfilter"; "Delete"="delete" } $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 PUTNodesQemuFirewallOptionsRB<PSCustomObject> .DESCRIPTION Convert from JSON to PUTNodesQemuFirewallOptionsRB<PSCustomObject> .PARAMETER Json Json object .OUTPUTS PUTNodesQemuFirewallOptionsRB<PSCustomObject> #> function ConvertFrom-PVEJsonToPUTNodesQemuFirewallOptionsRB { Param( [AllowEmptyString()] [string]$Json ) Process { 'Converting JSON to PSCustomObject: ProxmoxPVE => PVEPUTNodesQemuFirewallOptionsRB' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $JsonParameters = ConvertFrom-Json -InputObject $Json # check if Json contains properties not defined in PVEPUTNodesQemuFirewallOptionsRB $AllProperties = ("policy_in", "digest", "radv", "ndp", "policy_out", "enable", "dhcp", "log_level_in", "log_level_out", "macfilter", "node", "vmid", "ipfilter", "delete") 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 "policy_in"))) { #optional property not found $PolicyIn = $null } else { $PolicyIn = $JsonParameters.PSobject.Properties["policy_in"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "digest"))) { #optional property not found $Digest = $null } else { $Digest = $JsonParameters.PSobject.Properties["digest"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "radv"))) { #optional property not found $Radv = $null } else { $Radv = $JsonParameters.PSobject.Properties["radv"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "ndp"))) { #optional property not found $Ndp = $null } else { $Ndp = $JsonParameters.PSobject.Properties["ndp"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "policy_out"))) { #optional property not found $PolicyOut = $null } else { $PolicyOut = $JsonParameters.PSobject.Properties["policy_out"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "enable"))) { #optional property not found $Enable = $null } else { $Enable = $JsonParameters.PSobject.Properties["enable"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "dhcp"))) { #optional property not found $Dhcp = $null } else { $Dhcp = $JsonParameters.PSobject.Properties["dhcp"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "log_level_in"))) { #optional property not found $LogLevelIn = $null } else { $LogLevelIn = $JsonParameters.PSobject.Properties["log_level_in"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "log_level_out"))) { #optional property not found $LogLevelOut = $null } else { $LogLevelOut = $JsonParameters.PSobject.Properties["log_level_out"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "macfilter"))) { #optional property not found $Macfilter = $null } else { $Macfilter = $JsonParameters.PSobject.Properties["macfilter"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "node"))) { #optional property not found $Node = $null } else { $Node = $JsonParameters.PSobject.Properties["node"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "vmid"))) { #optional property not found $Vmid = $null } else { $Vmid = $JsonParameters.PSobject.Properties["vmid"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "ipfilter"))) { #optional property not found $Ipfilter = $null } else { $Ipfilter = $JsonParameters.PSobject.Properties["ipfilter"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "delete"))) { #optional property not found $Delete = $null } else { $Delete = $JsonParameters.PSobject.Properties["delete"].value } $PSO = [PSCustomObject]@{ "policy_in" = ${PolicyIn} "digest" = ${Digest} "radv" = ${Radv} "ndp" = ${Ndp} "policy_out" = ${PolicyOut} "enable" = ${Enable} "dhcp" = ${Dhcp} "log_level_in" = ${LogLevelIn} "log_level_out" = ${LogLevelOut} "macfilter" = ${Macfilter} "node" = ${Node} "vmid" = ${Vmid} "ipfilter" = ${Ipfilter} "delete" = ${Delete} } return $PSO } } |