Model/GallerySetting.ps1
# # Cloud Governance Api # Contact: support@avepoint.com # <# GallerySetting<PSCustomObject> #> function New-GallerySetting { [CmdletBinding()] Param ( [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${Id}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${DisplayName} ) Process { 'Creating PSCustomObject: Cloud.Governance.Client => GallerySetting' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $PSO = [PSCustomObject]@{ "Id" = ${Id} "DisplayName" = ${DisplayName} } return $PSO } } <# GallerySetting<PSCustomObject> #> function ConvertFrom-JsonToGallerySetting { Param( [AllowEmptyString()] [string]$Json ) Process { 'Converting JSON to PSCustomObject: Cloud.Governance.Client => GallerySetting' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $JsonParameters = ConvertFrom-Json -InputObject $Json # check if Json contains properties not defined in GallerySetting $AllProperties = $("Id", "DisplayName") 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 "Id"))) { #optional property not found $Id = $null } else { $Id = $JsonParameters.PSobject.Properties["Id"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "DisplayName"))) { #optional property not found $DisplayName = $null } else { $DisplayName = $JsonParameters.PSobject.Properties["DisplayName"].value } $PSO = [PSCustomObject]@{ "Id" = ${Id} "DisplayName" = ${DisplayName} } return $PSO } } |