beta/src/PSSailpointBeta/Model/TriggerExampleOutput.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 An example of the JSON payload that will be sent by the subscribed service to the trigger in response to an event. .PARAMETER Json JSON object .OUTPUTS TriggerExampleOutput<PSCustomObject> #> function ConvertFrom-BetaJsonToTriggerExampleOutput { [CmdletBinding()] Param ( [AllowEmptyString()] [string]$Json ) Process { $match = 0 $matchType = $null $matchInstance = $null # nullable check if ([string]::IsNullOrEmpty($Json) -or $Json -eq "{}") { return [PSCustomObject]@{ "ActualType" = $null "ActualInstance" = $null "OneOfSchemas" = @("AccessRequestDynamicApprover1", "AccessRequestPreApproval1") } } # try to match AccessRequestDynamicApprover1 defined in the oneOf schemas try { $matchInstance = ConvertFrom-BetaJsonToAccessRequestDynamicApprover1 $Json foreach($property in $matchInstance.PsObject.Properties) { if ($null -ne $property.Value) { $matchType = "AccessRequestDynamicApprover1" $match++ break } } } catch { # fail to match the schema defined in oneOf, proceed to the next one Write-Debug "Failed to match 'AccessRequestDynamicApprover1' defined in oneOf (BetaTriggerExampleOutput). Proceeding to the next one if any." } # try to match AccessRequestPreApproval1 defined in the oneOf schemas try { $matchInstance = ConvertFrom-BetaJsonToAccessRequestPreApproval1 $Json foreach($property in $matchInstance.PsObject.Properties) { if ($null -ne $property.Value) { $matchType = "AccessRequestPreApproval1" $match++ break } } } catch { # fail to match the schema defined in oneOf, proceed to the next one Write-Debug "Failed to match 'AccessRequestPreApproval1' defined in oneOf (BetaTriggerExampleOutput). Proceeding to the next one if any." } if ($match -gt 1) { throw "Error! The JSON payload matches more than one type defined in oneOf schemas ([AccessRequestDynamicApprover1, AccessRequestPreApproval1]). JSON Payload: $($Json)" } elseif ($match -eq 1) { return [PSCustomObject]@{ "ActualType" = ${matchType} "ActualInstance" = ${matchInstance} "OneOfSchemas" = @("AccessRequestDynamicApprover1", "AccessRequestPreApproval1") } } else { throw "Error! The JSON payload doesn't matches any type defined in oneOf schemas ([AccessRequestDynamicApprover1, AccessRequestPreApproval1]). JSON Payload: $($Json)" } } } |