Model/Intelaccesshistory.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 Access-history split into two independently paged categories. accessItems carries grant, remove, and account-status events. certifications carries identity-certified events. .PARAMETER AccessItems First page of access-item history events for the identity. .PARAMETER Certifications First page of certification history events for the identity. .OUTPUTS Intelaccesshistory<PSCustomObject> #> function Initialize-Intelaccesshistory { [CmdletBinding()] Param ( [Parameter(ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${AccessItems}, [Parameter(ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${Certifications} ) Process { 'Creating PSCustomObject: PSSailpoint.Intelligence => Intelaccesshistory' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug if (!$AccessItems) { throw "invalid value for 'AccessItems', 'AccessItems' cannot be null." } if (!$Certifications) { throw "invalid value for 'Certifications', 'Certifications' cannot be null." } $PSO = [PSCustomObject]@{ "accessItems" = ${AccessItems} "certifications" = ${Certifications} } return $PSO } } <# .SYNOPSIS Convert from JSON to Intelaccesshistory<PSCustomObject> .DESCRIPTION Convert from JSON to Intelaccesshistory<PSCustomObject> .PARAMETER Json Json object .OUTPUTS Intelaccesshistory<PSCustomObject> #> function ConvertFrom-JsonToIntelaccesshistory { Param( [AllowEmptyString()] [string]$Json ) Process { 'Converting JSON to PSCustomObject: PSSailpoint.Intelligence => Intelaccesshistory' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $JsonParameters = ConvertFrom-Json -InputObject $Json # check if Json contains properties not defined in Intelaccesshistory $AllProperties = ("accessItems", "certifications") 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 'accessItems' missing." } if (!([bool]($JsonParameters.PSobject.Properties.name -match "accessItems"))) { throw "Error! JSON cannot be serialized due to the required property 'accessItems' missing." } else { $AccessItems = $JsonParameters.PSobject.Properties["accessItems"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "certifications"))) { throw "Error! JSON cannot be serialized due to the required property 'certifications' missing." } else { $Certifications = $JsonParameters.PSobject.Properties["certifications"].value } $PSO = [PSCustomObject]@{ "accessItems" = ${AccessItems} "certifications" = ${Certifications} } return $PSO } } |