beta/src/PSSailpointBeta/Model/TriggerInputAccountsCollectedForAggregation.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 Source No description available. .PARAMETER Status The overall status of the collection. .PARAMETER Started The date and time when the account collection started. .PARAMETER Completed The date and time when the account collection finished. .PARAMETER Errors A list of errors that occurred during the collection. .PARAMETER Warnings A list of warnings that occurred during the collection. .PARAMETER Stats No description available. .OUTPUTS TriggerInputAccountsCollectedForAggregation<PSCustomObject> #> function Initialize-BetaTriggerInputAccountsCollectedForAggregation { [CmdletBinding()] Param ( [Parameter(Position = 0, ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${Source}, [Parameter(Position = 1, ValueFromPipelineByPropertyName = $true)] [ValidateSet("Success", "Failed", "Terminated")] [PSCustomObject] ${Status}, [Parameter(Position = 2, ValueFromPipelineByPropertyName = $true)] [System.DateTime] ${Started}, [Parameter(Position = 3, ValueFromPipelineByPropertyName = $true)] [System.DateTime] ${Completed}, [Parameter(Position = 4, ValueFromPipelineByPropertyName = $true)] [String[]] ${Errors}, [Parameter(Position = 5, ValueFromPipelineByPropertyName = $true)] [String[]] ${Warnings}, [Parameter(Position = 6, ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${Stats} ) Process { 'Creating PSCustomObject: PSSailpointBeta => BetaTriggerInputAccountsCollectedForAggregation' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug if ($null -eq $Source) { throw "invalid value for 'Source', 'Source' cannot be null." } if ($null -eq $Status) { throw "invalid value for 'Status', 'Status' cannot be null." } if ($null -eq $Started) { throw "invalid value for 'Started', 'Started' cannot be null." } if ($null -eq $Completed) { throw "invalid value for 'Completed', 'Completed' cannot be null." } if ($null -eq $Stats) { throw "invalid value for 'Stats', 'Stats' cannot be null." } $PSO = [PSCustomObject]@{ "source" = ${Source} "status" = ${Status} "started" = ${Started} "completed" = ${Completed} "errors" = ${Errors} "warnings" = ${Warnings} "stats" = ${Stats} } return $PSO } } <# .SYNOPSIS Convert from JSON to TriggerInputAccountsCollectedForAggregation<PSCustomObject> .DESCRIPTION Convert from JSON to TriggerInputAccountsCollectedForAggregation<PSCustomObject> .PARAMETER Json Json object .OUTPUTS TriggerInputAccountsCollectedForAggregation<PSCustomObject> #> function ConvertFrom-BetaJsonToTriggerInputAccountsCollectedForAggregation { Param( [AllowEmptyString()] [string]$Json ) Process { 'Converting JSON to PSCustomObject: PSSailpointBeta => BetaTriggerInputAccountsCollectedForAggregation' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $JsonParameters = ConvertFrom-Json -InputObject $Json # check if Json contains properties not defined in BetaTriggerInputAccountsCollectedForAggregation $AllProperties = ("source", "status", "started", "completed", "errors", "warnings", "stats") 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 'source' missing." } 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 "status"))) { throw "Error! JSON cannot be serialized due to the required property 'status' missing." } else { $Status = $JsonParameters.PSobject.Properties["status"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "started"))) { throw "Error! JSON cannot be serialized due to the required property 'started' missing." } else { $Started = $JsonParameters.PSobject.Properties["started"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "completed"))) { throw "Error! JSON cannot be serialized due to the required property 'completed' missing." } else { $Completed = $JsonParameters.PSobject.Properties["completed"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "errors"))) { throw "Error! JSON cannot be serialized due to the required property 'errors' missing." } else { $Errors = $JsonParameters.PSobject.Properties["errors"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "warnings"))) { throw "Error! JSON cannot be serialized due to the required property 'warnings' missing." } else { $Warnings = $JsonParameters.PSobject.Properties["warnings"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "stats"))) { throw "Error! JSON cannot be serialized due to the required property 'stats' missing." } else { $Stats = $JsonParameters.PSobject.Properties["stats"].value } $PSO = [PSCustomObject]@{ "source" = ${Source} "status" = ${Status} "started" = ${Started} "completed" = ${Completed} "errors" = ${Errors} "warnings" = ${Warnings} "stats" = ${Stats} } return $PSO } } |