beta/src/PSSailpointBeta/Model/TriggerInputAccessRequestDynamicApprover.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 AccessRequestId The unique ID of the access request object. Can be used with the [access request status endpoint](https://developer.sailpoint.com/idn/api/beta/list-access-request-status) to get the status of the request. .PARAMETER RequestedFor No description available. .PARAMETER RequestedItems The access items that are being requested. .PARAMETER RequestedBy No description available. .OUTPUTS TriggerInputAccessRequestDynamicApprover<PSCustomObject> #> function Initialize-BetaTriggerInputAccessRequestDynamicApprover { [CmdletBinding()] Param ( [Parameter(Position = 0, ValueFromPipelineByPropertyName = $true)] [String] ${AccessRequestId}, [Parameter(Position = 1, ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${RequestedFor}, [Parameter(Position = 2, ValueFromPipelineByPropertyName = $true)] [PSCustomObject[]] ${RequestedItems}, [Parameter(Position = 3, ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${RequestedBy} ) Process { 'Creating PSCustomObject: PSSailpointBeta => BetaTriggerInputAccessRequestDynamicApprover' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug if ($null -eq $AccessRequestId) { throw "invalid value for 'AccessRequestId', 'AccessRequestId' cannot be null." } if ($null -eq $RequestedFor) { throw "invalid value for 'RequestedFor', 'RequestedFor' cannot be null." } if ($null -eq $RequestedItems) { throw "invalid value for 'RequestedItems', 'RequestedItems' cannot be null." } if ($null -eq $RequestedBy) { throw "invalid value for 'RequestedBy', 'RequestedBy' cannot be null." } $PSO = [PSCustomObject]@{ "accessRequestId" = ${AccessRequestId} "requestedFor" = ${RequestedFor} "requestedItems" = ${RequestedItems} "requestedBy" = ${RequestedBy} } return $PSO } } <# .SYNOPSIS Convert from JSON to TriggerInputAccessRequestDynamicApprover<PSCustomObject> .DESCRIPTION Convert from JSON to TriggerInputAccessRequestDynamicApprover<PSCustomObject> .PARAMETER Json Json object .OUTPUTS TriggerInputAccessRequestDynamicApprover<PSCustomObject> #> function ConvertFrom-BetaJsonToTriggerInputAccessRequestDynamicApprover { Param( [AllowEmptyString()] [string]$Json ) Process { 'Converting JSON to PSCustomObject: PSSailpointBeta => BetaTriggerInputAccessRequestDynamicApprover' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $JsonParameters = ConvertFrom-Json -InputObject $Json # check if Json contains properties not defined in BetaTriggerInputAccessRequestDynamicApprover $AllProperties = ("accessRequestId", "requestedFor", "requestedItems", "requestedBy") 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 'accessRequestId' missing." } if (!([bool]($JsonParameters.PSobject.Properties.name -match "accessRequestId"))) { throw "Error! JSON cannot be serialized due to the required property 'accessRequestId' missing." } else { $AccessRequestId = $JsonParameters.PSobject.Properties["accessRequestId"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "requestedFor"))) { throw "Error! JSON cannot be serialized due to the required property 'requestedFor' missing." } else { $RequestedFor = $JsonParameters.PSobject.Properties["requestedFor"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "requestedItems"))) { throw "Error! JSON cannot be serialized due to the required property 'requestedItems' missing." } else { $RequestedItems = $JsonParameters.PSobject.Properties["requestedItems"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "requestedBy"))) { throw "Error! JSON cannot be serialized due to the required property 'requestedBy' missing." } else { $RequestedBy = $JsonParameters.PSobject.Properties["requestedBy"].value } $PSO = [PSCustomObject]@{ "accessRequestId" = ${AccessRequestId} "requestedFor" = ${RequestedFor} "requestedItems" = ${RequestedItems} "requestedBy" = ${RequestedBy} } return $PSO } } |