beta/src/PSSailpointBeta/Model/SubscriptionPatchRequestInnerValueAnyOfInner.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 Json JSON object .OUTPUTS SubscriptionPatchRequestInnerValueAnyOfInner<PSCustomObject> #> function ConvertFrom-BetaJsonToSubscriptionPatchRequestInnerValueAnyOfInner { [CmdletBinding()] Param ( [AllowEmptyString()] [string]$Json ) Process { $match = 0 $matchType = $null $matchInstance = $null if ($match -ne 0) { # no match yet # try to match Int32 defined in the anyOf schemas try { $matchInstance = ConvertFrom-BetaJsonToInt32 $Json foreach($property in $matchInstance.PsObject.Properties) { if ($null -ne $property.Value) { $matchType = "Int32" $match++ break } } } catch { # fail to match the schema defined in anyOf, proceed to the next one Write-Debug "Failed to match 'Int32' defined in anyOf (BetaSubscriptionPatchRequestInnerValueAnyOfInner). Proceeding to the next one if any." } } if ($match -ne 0) { # no match yet # try to match String defined in the anyOf schemas try { $matchInstance = ConvertFrom-BetaJsonToString $Json foreach($property in $matchInstance.PsObject.Properties) { if ($null -ne $property.Value) { $matchType = "String" $match++ break } } } catch { # fail to match the schema defined in anyOf, proceed to the next one Write-Debug "Failed to match 'String' defined in anyOf (BetaSubscriptionPatchRequestInnerValueAnyOfInner). Proceeding to the next one if any." } } if ($match -ne 0) { # no match yet # try to match SystemCollectionsHashtable defined in the anyOf schemas try { $matchInstance = ConvertFrom-BetaJsonToSystemCollectionsHashtable $Json foreach($property in $matchInstance.PsObject.Properties) { if ($null -ne $property.Value) { $matchType = "SystemCollectionsHashtable" $match++ break } } } catch { # fail to match the schema defined in anyOf, proceed to the next one Write-Debug "Failed to match 'SystemCollectionsHashtable' defined in anyOf (BetaSubscriptionPatchRequestInnerValueAnyOfInner). Proceeding to the next one if any." } } if ($match -eq 1) { return [PSCustomObject]@{ "ActualType" = ${matchType} "ActualInstance" = ${matchInstance} "anyOfSchemas" = @("Int32", "String", "SystemCollectionsHashtable") } } else { throw "Error! The JSON payload doesn't matches any type defined in anyOf schemas ([Int32, String, SystemCollectionsHashtable]). JSON Payload: $($Json)" } } } |