Model/SavedSearchCompleteSearchResultsIdentity.ps1
# # Identity Security Cloud V2024 API # Use these APIs to interact with the Identity Security Cloud platform to achieve repeatable, automated processes with greater scalability. We encourage you to join the SailPoint Developer Community forum at https://developer.sailpoint.com/discuss to connect with other developers using our APIs. # Version: v2024 # Generated by OpenAPI Generator: https://openapi-generator.tech # <# .SYNOPSIS No summary available. .DESCRIPTION A table of identities that match the search criteria. .PARAMETER Count The number of rows in the table. .PARAMETER Noun The type of object represented in the table. .PARAMETER Preview A sample of the data in the table. .OUTPUTS SavedSearchCompleteSearchResultsIdentity<PSCustomObject> #> function Initialize-V2024SavedSearchCompleteSearchResultsIdentity { [CmdletBinding()] Param ( [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${Count}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${Noun}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String[][]] ${Preview} ) Process { 'Creating PSCustomObject: PSSailpoint.V2024 => V2024SavedSearchCompleteSearchResultsIdentity' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug if (!$Count) { throw "invalid value for 'Count', 'Count' cannot be null." } if (!$Noun) { throw "invalid value for 'Noun', 'Noun' cannot be null." } if (!$Preview) { throw "invalid value for 'Preview', 'Preview' cannot be null." } $PSO = [PSCustomObject]@{ "count" = ${Count} "noun" = ${Noun} "preview" = ${Preview} } return $PSO } } <# .SYNOPSIS Convert from JSON to SavedSearchCompleteSearchResultsIdentity<PSCustomObject> .DESCRIPTION Convert from JSON to SavedSearchCompleteSearchResultsIdentity<PSCustomObject> .PARAMETER Json Json object .OUTPUTS SavedSearchCompleteSearchResultsIdentity<PSCustomObject> #> function ConvertFrom-V2024JsonToSavedSearchCompleteSearchResultsIdentity { Param( [AllowEmptyString()] [string]$Json ) Process { 'Converting JSON to PSCustomObject: PSSailpoint.V2024 => V2024SavedSearchCompleteSearchResultsIdentity' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $JsonParameters = ConvertFrom-Json -InputObject $Json # check if Json contains properties not defined in V2024SavedSearchCompleteSearchResultsIdentity $AllProperties = ("count", "noun", "preview") foreach ($name in $JsonParameters.PsObject.Properties.Name) { if (!($AllProperties.Contains($name))) { throw "Error! JSON key '$name' not found in the properties: $($AllProperties)" } } If ([string]::IsNullOrEmpty($Json) -or $Json -eq "{}") { # empty json throw "Error! Empty JSON cannot be serialized due to the required property 'count' missing." } if (!([bool]($JsonParameters.PSobject.Properties.name -match "count"))) { throw "Error! JSON cannot be serialized due to the required property 'count' missing." } else { $Count = $JsonParameters.PSobject.Properties["count"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "noun"))) { throw "Error! JSON cannot be serialized due to the required property 'noun' missing." } else { $Noun = $JsonParameters.PSobject.Properties["noun"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "preview"))) { throw "Error! JSON cannot be serialized due to the required property 'preview' missing." } else { $Preview = $JsonParameters.PSobject.Properties["preview"].value } $PSO = [PSCustomObject]@{ "count" = ${Count} "noun" = ${Noun} "preview" = ${Preview} } return $PSO } } |