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