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