intelligence/src/PSSailpoint.Intelligence/Model/Intelnonhumanidentityownedslice.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 One paged ownership role bucket (`primaryOwned` or `secondaryOwned`) embedded on the human aggregate. Embeds the first page of owned non-human identities; totalCount when items is non-empty. Continuation next carries limit and offset. .PARAMETER Items First page of owned non-human identities for this role. .PARAMETER TotalCount Total number of owned non-human identities in this role; omitted when items is empty. .PARAMETER Next Absolute URL to the next page for this category and ownership role; present when totalCount exceeds the items returned on this page. Includes `ownershipRole`, `limit`, `offset`, and `count=true`. .OUTPUTS Intelnonhumanidentityownedslice<PSCustomObject> #> function Initialize-Intelnonhumanidentityownedslice { [CmdletBinding()] Param ( [Parameter(ValueFromPipelineByPropertyName = $true)] [PSCustomObject[]] ${Items}, [Parameter(ValueFromPipelineByPropertyName = $true)] [System.Nullable[Int32]] ${TotalCount}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${Next} ) Process { 'Creating PSCustomObject: PSSailpoint.Intelligence => Intelnonhumanidentityownedslice' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug if (!$Items) { throw "invalid value for 'Items', 'Items' cannot be null." } if ($TotalCount -and $TotalCount -lt 1) { throw "invalid value for 'TotalCount', must be greater than or equal to 1." } $PSO = [PSCustomObject]@{ "items" = ${Items} "totalCount" = ${TotalCount} "next" = ${Next} } return $PSO } } <# .SYNOPSIS Convert from JSON to Intelnonhumanidentityownedslice<PSCustomObject> .DESCRIPTION Convert from JSON to Intelnonhumanidentityownedslice<PSCustomObject> .PARAMETER Json Json object .OUTPUTS Intelnonhumanidentityownedslice<PSCustomObject> #> function ConvertFrom-JsonToIntelnonhumanidentityownedslice { Param( [AllowEmptyString()] [string]$Json ) Process { 'Converting JSON to PSCustomObject: PSSailpoint.Intelligence => Intelnonhumanidentityownedslice' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $JsonParameters = ConvertFrom-Json -InputObject $Json # check if Json contains properties not defined in Intelnonhumanidentityownedslice $AllProperties = ("items", "totalCount", "next") 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 'items' missing." } if (!([bool]($JsonParameters.PSobject.Properties.name -match "items"))) { throw "Error! JSON cannot be serialized due to the required property 'items' missing." } else { $Items = $JsonParameters.PSobject.Properties["items"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "totalCount"))) { #optional property not found $TotalCount = $null } else { $TotalCount = $JsonParameters.PSobject.Properties["totalCount"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "next"))) { #optional property not found $Next = $null } else { $Next = $JsonParameters.PSobject.Properties["next"].value } $PSO = [PSCustomObject]@{ "items" = ${Items} "totalCount" = ${TotalCount} "next" = ${Next} } return $PSO } } |