beta/src/PSSailpointBeta/Model/IdentityDto.ps1
# # IdentityNow Beta API # Use these APIs to interact with the IdentityNow platform to achieve repeatable, automated processes with greater scalability. These APIs are in beta and are subject to change. 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: 3.1.0-beta # Generated by OpenAPI Generator: https://openapi-generator.tech # <# .SYNOPSIS No summary available. .DESCRIPTION No description available. .PARAMETER Alias Alternate unique identifier for the identity .PARAMETER EmailAddress The email address of the identity .PARAMETER ProcessingState The processing state of the identity .PARAMETER IdentityStatus The identity's status in the system .PARAMETER ManagerRef No description available. .PARAMETER IsManager Whether this identity is a manager of another identity .PARAMETER LastRefresh The last time the identity was refreshed by the system .PARAMETER Attributes A map with the identity attributes for the identity .PARAMETER LifecycleState No description available. .OUTPUTS IdentityDto<PSCustomObject> #> function Initialize-BetaIdentityDto { [CmdletBinding()] Param ( [Parameter(Position = 0, ValueFromPipelineByPropertyName = $true)] [String] ${Alias}, [Parameter(Position = 1, ValueFromPipelineByPropertyName = $true)] [String] ${EmailAddress}, [Parameter(Position = 2, ValueFromPipelineByPropertyName = $true)] [ValidateSet("ERROR", "OK")] [String] ${ProcessingState}, [Parameter(Position = 3, ValueFromPipelineByPropertyName = $true)] [ValidateSet("UNREGISTERED", "REGISTERED", "PENDING", "WARNING", "DISABLED", "ACTIVE", "DEACTIVATED", "TERMINATED", "ERROR", "LOCKED")] [String] ${IdentityStatus}, [Parameter(Position = 4, ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${ManagerRef}, [Parameter(Position = 5, ValueFromPipelineByPropertyName = $true)] [System.Nullable[Boolean]] ${IsManager} = $false, [Parameter(Position = 6, ValueFromPipelineByPropertyName = $true)] [System.Nullable[System.DateTime]] ${LastRefresh}, [Parameter(Position = 7, ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${Attributes}, [Parameter(Position = 8, ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${LifecycleState} ) Process { 'Creating PSCustomObject: PSSailpointBeta => BetaIdentityDto' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $PSO = [PSCustomObject]@{ "alias" = ${Alias} "emailAddress" = ${EmailAddress} "processingState" = ${ProcessingState} "identityStatus" = ${IdentityStatus} "managerRef" = ${ManagerRef} "isManager" = ${IsManager} "lastRefresh" = ${LastRefresh} "attributes" = ${Attributes} "lifecycleState" = ${LifecycleState} } return $PSO } } <# .SYNOPSIS Convert from JSON to IdentityDto<PSCustomObject> .DESCRIPTION Convert from JSON to IdentityDto<PSCustomObject> .PARAMETER Json Json object .OUTPUTS IdentityDto<PSCustomObject> #> function ConvertFrom-BetaJsonToIdentityDto { Param( [AllowEmptyString()] [string]$Json ) Process { 'Converting JSON to PSCustomObject: PSSailpointBeta => BetaIdentityDto' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $JsonParameters = ConvertFrom-Json -InputObject $Json # check if Json contains properties not defined in BetaIdentityDto $AllProperties = ("alias", "emailAddress", "processingState", "identityStatus", "managerRef", "isManager", "lastRefresh", "attributes", "lifecycleState") foreach ($name in $JsonParameters.PsObject.Properties.Name) { if (!($AllProperties.Contains($name))) { throw "Error! JSON key '$name' not found in the properties: $($AllProperties)" } } if (!([bool]($JsonParameters.PSobject.Properties.name -match "alias"))) { #optional property not found $Alias = $null } else { $Alias = $JsonParameters.PSobject.Properties["alias"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "emailAddress"))) { #optional property not found $EmailAddress = $null } else { $EmailAddress = $JsonParameters.PSobject.Properties["emailAddress"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "processingState"))) { #optional property not found $ProcessingState = $null } else { $ProcessingState = $JsonParameters.PSobject.Properties["processingState"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "identityStatus"))) { #optional property not found $IdentityStatus = $null } else { $IdentityStatus = $JsonParameters.PSobject.Properties["identityStatus"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "managerRef"))) { #optional property not found $ManagerRef = $null } else { $ManagerRef = $JsonParameters.PSobject.Properties["managerRef"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "isManager"))) { #optional property not found $IsManager = $null } else { $IsManager = $JsonParameters.PSobject.Properties["isManager"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "lastRefresh"))) { #optional property not found $LastRefresh = $null } else { $LastRefresh = $JsonParameters.PSobject.Properties["lastRefresh"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "attributes"))) { #optional property not found $Attributes = $null } else { $Attributes = $JsonParameters.PSobject.Properties["attributes"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "lifecycleState"))) { #optional property not found $LifecycleState = $null } else { $LifecycleState = $JsonParameters.PSobject.Properties["lifecycleState"].value } $PSO = [PSCustomObject]@{ "alias" = ${Alias} "emailAddress" = ${EmailAddress} "processingState" = ${ProcessingState} "identityStatus" = ${IdentityStatus} "managerRef" = ${ManagerRef} "isManager" = ${IsManager} "lastRefresh" = ${LastRefresh} "attributes" = ${Attributes} "lifecycleState" = ${LifecycleState} } return $PSO } } |