Model/PUTClusterSdnIpamsRB.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 Ipam No description available. .PARAMETER Delete No description available. .PARAMETER Section No description available. .PARAMETER Digest No description available. .PARAMETER Token No description available. .PARAMETER Url No description available. .OUTPUTS PUTClusterSdnIpamsRB<PSCustomObject> #> function Initialize-PVEPUTClusterSdnIpamsRB { [CmdletBinding()] Param ( [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${Ipam}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${Delete}, [Parameter(ValueFromPipelineByPropertyName = $true)] [System.Nullable[Int32]] ${Section}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${Digest}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${Token}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${Url} ) Process { 'Creating PSCustomObject: ProxmoxPVE => PVEPUTClusterSdnIpamsRB' | 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 (!$Digest -and $Digest.length -gt 64) { throw "invalid value for 'Digest', the character length must be smaller than or equal to 64." } $DisplayNameMapping =@{ "Ipam"="ipam"; "Delete"="delete"; "Section"="section"; "Digest"="digest"; "Token"="token"; "Url"="url" } $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 PUTClusterSdnIpamsRB<PSCustomObject> .DESCRIPTION Convert from JSON to PUTClusterSdnIpamsRB<PSCustomObject> .PARAMETER Json Json object .OUTPUTS PUTClusterSdnIpamsRB<PSCustomObject> #> function ConvertFrom-PVEJsonToPUTClusterSdnIpamsRB { Param( [AllowEmptyString()] [string]$Json ) Process { 'Converting JSON to PSCustomObject: ProxmoxPVE => PVEPUTClusterSdnIpamsRB' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $JsonParameters = ConvertFrom-Json -InputObject $Json # check if Json contains properties not defined in PVEPUTClusterSdnIpamsRB $AllProperties = ("ipam", "delete", "section", "digest", "token", "url") 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 "ipam"))) { #optional property not found $Ipam = $null } else { $Ipam = $JsonParameters.PSobject.Properties["ipam"].value } 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 "section"))) { #optional property not found $Section = $null } else { $Section = $JsonParameters.PSobject.Properties["section"].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 "token"))) { #optional property not found $Token = $null } else { $Token = $JsonParameters.PSobject.Properties["token"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "url"))) { #optional property not found $Url = $null } else { $Url = $JsonParameters.PSobject.Properties["url"].value } $PSO = [PSCustomObject]@{ "ipam" = ${Ipam} "delete" = ${Delete} "section" = ${Section} "digest" = ${Digest} "token" = ${Token} "url" = ${Url} } return $PSO } } |