v2024/src/PSSailpoint.V2024/Model/AccountUncorrelated.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 No description available. .PARAMETER Identity No description available. .PARAMETER Source No description available. .PARAMETER Account No description available. .PARAMETER EntitlementCount The number of entitlements associated with this account. .OUTPUTS AccountUncorrelated<PSCustomObject> #> function Initialize-V2024AccountUncorrelated { [CmdletBinding()] Param ( [Parameter(ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${Identity}, [Parameter(ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${Source}, [Parameter(ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${Account}, [Parameter(ValueFromPipelineByPropertyName = $true)] [System.Nullable[Int32]] ${EntitlementCount} ) Process { 'Creating PSCustomObject: PSSailpoint.V2024 => V2024AccountUncorrelated' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug if (!$Identity) { throw "invalid value for 'Identity', 'Identity' cannot be null." } if (!$Source) { throw "invalid value for 'Source', 'Source' cannot be null." } if (!$Account) { throw "invalid value for 'Account', 'Account' cannot be null." } $PSO = [PSCustomObject]@{ "identity" = ${Identity} "source" = ${Source} "account" = ${Account} "entitlementCount" = ${EntitlementCount} } return $PSO } } <# .SYNOPSIS Convert from JSON to AccountUncorrelated<PSCustomObject> .DESCRIPTION Convert from JSON to AccountUncorrelated<PSCustomObject> .PARAMETER Json Json object .OUTPUTS AccountUncorrelated<PSCustomObject> #> function ConvertFrom-V2024JsonToAccountUncorrelated { Param( [AllowEmptyString()] [string]$Json ) Process { 'Converting JSON to PSCustomObject: PSSailpoint.V2024 => V2024AccountUncorrelated' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $JsonParameters = ConvertFrom-Json -InputObject $Json # check if Json contains properties not defined in V2024AccountUncorrelated $AllProperties = ("identity", "source", "account", "entitlementCount") 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 'identity' missing." } if (!([bool]($JsonParameters.PSobject.Properties.name -match "identity"))) { throw "Error! JSON cannot be serialized due to the required property 'identity' missing." } else { $Identity = $JsonParameters.PSobject.Properties["identity"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "source"))) { throw "Error! JSON cannot be serialized due to the required property 'source' missing." } else { $Source = $JsonParameters.PSobject.Properties["source"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "account"))) { throw "Error! JSON cannot be serialized due to the required property 'account' missing." } else { $Account = $JsonParameters.PSobject.Properties["account"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "entitlementCount"))) { #optional property not found $EntitlementCount = $null } else { $EntitlementCount = $JsonParameters.PSobject.Properties["entitlementCount"].value } $PSO = [PSCustomObject]@{ "identity" = ${Identity} "source" = ${Source} "account" = ${Account} "entitlementCount" = ${EntitlementCount} } return $PSO } } |