intelligence/src/PSSailpoint.Intelligence/Model/Inteloutliersslice.ps1
|
# # Identity Security Cloud API - Intelligence # 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: v1 # Generated by OpenAPI Generator: https://openapi-generator.tech # <# .SYNOPSIS No summary available. .DESCRIPTION Outlier slices embedded in the aggregate identity response. .PARAMETER RareAccess First page of rare access items for the identity. .OUTPUTS Inteloutliersslice<PSCustomObject> #> function Initialize-Inteloutliersslice { [CmdletBinding()] Param ( [Parameter(ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${RareAccess} ) Process { 'Creating PSCustomObject: PSSailpoint.Intelligence => Inteloutliersslice' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug if (!$RareAccess) { throw "invalid value for 'RareAccess', 'RareAccess' cannot be null." } $PSO = [PSCustomObject]@{ "rareAccess" = ${RareAccess} } return $PSO } } <# .SYNOPSIS Convert from JSON to Inteloutliersslice<PSCustomObject> .DESCRIPTION Convert from JSON to Inteloutliersslice<PSCustomObject> .PARAMETER Json Json object .OUTPUTS Inteloutliersslice<PSCustomObject> #> function ConvertFrom-JsonToInteloutliersslice { Param( [AllowEmptyString()] [string]$Json ) Process { 'Converting JSON to PSCustomObject: PSSailpoint.Intelligence => Inteloutliersslice' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $JsonParameters = ConvertFrom-Json -InputObject $Json # check if Json contains properties not defined in Inteloutliersslice $AllProperties = ("rareAccess") 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 'rareAccess' missing." } if (!([bool]($JsonParameters.PSobject.Properties.name -match "rareAccess"))) { throw "Error! JSON cannot be serialized due to the required property 'rareAccess' missing." } else { $RareAccess = $JsonParameters.PSobject.Properties["rareAccess"].value } $PSO = [PSCustomObject]@{ "rareAccess" = ${RareAccess} } return $PSO } } |